/* 公共样式 */
@font-face {
  font-family: "Outfit";
  src: url("../fonts/Outfit-Medium.ttf");
}

::-webkit-scrollbar {
  /*滚动条整体样式*/
  width: 0px;
  /*高宽分别对应横竖滚动条的尺寸*/
  height: 1px;
}
::-webkit-scrollbar-thumb {
  /*滚动条里面小方块*/
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  background: #535353;
}
::-webkit-scrollbar-track {
  /*滚动条里面轨道*/
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  background: #ededed;
}
.wp {
  width: 83.333333333333333333333333333333%;
  margin: 0 auto;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
}

.wp .titledemo {
  width: 100%;
  border-bottom: 1px solid #e3e2e2;
}
.wp .titledemo .title {
  font-size: 16px;
  color: #999898;
  padding: 3.645vw 0 28px 0;
}
.wp .titlename {
  font-family: 微软雅黑;
  font-size: clamp(24px, 2.7083333333333333333333333333333vw, 52px);
  font-weight: 700;
  text-align: left;
  margin: 35px 0;
  letter-spacing: 0;
}
.wp .titlename span {
  color: #0068ca;
}
.no-scroll {
  overflow-y: hidden !important;
  position: fixed !important;
  width: 100% !important;
  height: 100% !important;
}
/* * {
        transition: all 0.6s;
    } */
/* 分页样式 */

.pagination {
  display: flex;
  justify-content: center;
}

.pagination li {
  width: 30px;
  height: 30px;
  margin: 10px 10px;
  border: 1px solid #ccc;
  text-align: center;
  line-height: 30px;
}

.pagination .disabled {
  opacity: 0.5;
}

.pagination .active {
  background: rgb(35, 70, 110);
  color: #fff;
}
/* 汉堡菜单icon */

.hamburger .line {
  width: 0.56rem;
  height: 3px;
  background-color: #e50012;
  display: block;
  margin: 8px auto;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.hamburger:hover {
  cursor: pointer;
}

#hamburger-11 {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#hamburger-11.is-active {
  animation: smallbig 0.6s forwards;
}

@keyframes smallbig {
  0%,
  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
  }
}

#hamburger-11.is-active .line:nth-child(1),
#hamburger-11.is-active .line:nth-child(2) {
  -webkit-transition-delay: 0.2s;
  -o-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

#hamburger-11.is-active .line:nth-child(1) {
  -webkit-transform: translateY(12px) rotate(45deg);
  -ms-transform: translateY(12px) rotate(45deg);
  -o-transform: translateY(12px) rotate(45deg);
  transform: translateY(12px) rotate(45deg);
}

#hamburger-11.is-active .line:nth-child(2) {
  -webkit-transform: translateY(1px) rotate(-45deg);
  -ms-transform: translateY(1px) rotate(-45deg);
  -o-transform: translateY(1px) rotate(-45deg);
  transform: translateY(1px) rotate(-45deg);
}

#hamburger-11.is-active .line:nth-child(3) {
  width: 0;
}

/* 导航栏 */
.pc-header {
  position: absolute;
  z-index: 99;
  width: 100%;
  height: 100px;
  border-bottom: 1px solid #fff;
}

.pc-header .wp .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
}
.pc-header .wp .wrap .pc-nav ul {
  display: flex;
}
.pc-header .wp .wrap .pc-nav ul li {
  margin: 0 1.5vw;
}
.pc-header .wp .wrap .pc-nav ul li a {
  font-size: clamp(14px, calc(0.5vw + 8.4px), 18px);
  color: #fff;
}
.pc-header .wp .wrap .pc-nav ul li:hover a {
  color: #0068ca;
}
.pc-header .wp .wrap .contact {
  display: flex;
  align-items: center;
}
.pc-header .wp .wrap .contact span {
  display: flex;
  align-items: center;
  font-size: clamp(14px, calc(0.5vw + 6.4px), 16px);
  color: #fff;
  margin: 0 30px 0 0;
  user-select: none;
  -webkit-user-select: none;
}
.pc-header .wp .wrap .contact span img {
  margin: 0 10px 0 0;
}
.pc-header .wp .wrap .contact .func {
  display: flex;
  justify-content: center;
  align-items: center;
}
.pc-header .wp .wrap .contact .func i {
  display: block;
  height: 20px;
  width: 1px;
  margin: 0 15px;
  background: rgba(255, 255, 255, 0.5);
}
.pc-header .wp .wrap .contact .func a {
  color: #fff;
  font-size: clamp(14px, calc(0.5vw + 6.4px), 16px);
}

.modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 111; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0); /* Fallback color */
  background-color: rgba(0, 0, 0, 0.7); /* Black w/ opacity */
  padding-top: 60px;
}

.modal-content {
  background-color: #fefefe;
  margin: 5% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%; /* Could be more or less, depending on screen size */
  position: relative;
  max-width: 600px;
  border-radius: 6px;
}

.close {
  color: #aaa;
  position: absolute;
  top: 0px;
  right: 15px;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}
.modal #searchBox {
  border: 1px solid #ccc;
  width: 79%;
  height: 41px;
  border-radius: 33px;
  padding: 0 0 0 20px;
  margin: 0 1% 0 0;
}
.pc-header #searchIcon {
  cursor: pointer;
}
.modal #searchButton {
  width: 15%;
  height: 40px;
  border: 0;
  outline: 0;
  background: rgba(0, 81, 160, 1);
  border-radius: 10px;
  color: #fff;
  cursor: pointer;
}
/* 移动端头部 */
.mobile-header {
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  position: absolute;
  z-index: 99;
  width: 100%;
}
.mobile-header .logo img {
  max-width: 100px;
}
.menu-toggle {
  background-color: transparent;
  border: none;
  font-size: 34px;
  cursor: pointer;
  display: none;
  color: #fff;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  position: absolute;
  width: 100%;
  background: #fff;
  left: 0;
  top: 65px;
  height: 100vh;
  z-index: 99;
}
.mobile-nav.is-active {
  display: flex;
}

.mobile-nav ul {
  list-style: none;
}

.mobile-nav li {
  margin: 0;
  text-align: center;
  border-bottom: 1px solid #eee;
}

.mobile-nav a {
  color: #000;
  text-decoration: none;
  font-size: 1.5em;
  margin: 15px 0;
  display: block;
}

/* 响应式设计 */
@media (max-width: 992px) {
  .pc-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }
}

@media (min-width: 993px) {
  .mobile-header {
    display: none;
  }
}

/* PC-banner */

.banner .banpic {
  max-width: 100%;
}
/* 移动端导航 */

.mobilenav {
  position: absolute;
  z-index: 10;
  width: 100%;
  background: #fff;
  height: 100vh;
  left: -100%;
  transition: all 0.4s;
}

.mobilenav ul li {
  text-align: center;
}

.mobilenav ul li .navitem {
  font-size: 0.22rem;
  padding: 0.14rem 20px;
  display: block;
  border-bottom: 1px solid #efefef;
}

.mobilenav ul li .subnav ul li {
  border-bottom: 1px solid #efefef;
  padding: 10px 0 10px 45%;
}

.mobilenav ul li .subnav .subitem {
  font-size: 14px;
  padding: 0;
  position: relative;
  border: 0;
  text-align: left;
}

.mobilenav ul li .subnav .subitem::before {
  content: "";
  background: #a1a1a1;
  width: 10px;
  height: 1px;
  position: absolute;
  left: -15px;
  top: 10px;
}

.subnav {
  height: 0px;
  overflow: hidden;
}
/* banner */

.banner {
  line-height: 0.6;
}

.banner .swiper-pagination-bullet {
  background: #fff;
}

.banner .swiper-pagination-bullet-active {
  background: #fff;
}
.banner_text .more:hover {
  background: #f08300;
  border-color: #f08300;
}

.swpPrev i:hover,
.swpNext i:hover {
  color: #f08300;
}

.warp {
  width: max-content;
  margin: 0 auto;
}

.banner {
  width: 100%;
  position: relative;
}

.banner .banner_img {
  width: 100%;
  height: 100vh;
}
.banner .mbanner_img{
  width: 100%;
  height: 60vh;
  display: none;
}

.banner_text {
  position: absolute;
  top: 20.895833333333333333333333333333vw;
  left: 8.3333%;
  width: 100%;
}

.banner_text span {
  font-size: clamp(16px, calc(0.5vw + 10.4px), 20px);
  color: #fff;
}

.banner_text span img {
  margin: 0 5px 0 0;
}
.banner_text p {
  font-size: clamp(36px, calc(2vw + 26.6px), 65px);
  color: #ffffff;
  line-height: 1.2;
  font-weight: bold;
  margin: 15px 0;
}

.banner_text .linkk {
  width: 5.9375vw;
  max-width: 114px;
  min-width: 90px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #0068ca;
  color: #fff;
  font-size: 16px;
}
.banner_text .more {
  width: 160px;
  height: 52px;
  border: 1px solid #ffffff;
  font-size: 16px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
  transition: all 0.4s;
}

.baner_vonter {
  width: 100%;
  position: absolute;
  bottom: 51%;
  left: auto;
  z-index: 222;
  right: 1%;
}

.banPagin {
  display: flex;
  align-items: center;
  display: none;
}

.banPagin .swe_span {
  display: flex;
  align-items: center;
  margin: 0 14px;
}

.banPagin .swe_span .swiper-pagination-bullet {
  width: 28px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.banPagin .swe_span .swiper-pagination-bullet-active {
  background: rgba(255, 255, 255, 1);
}

.banPagin .cutAct,
.banPagin .total {
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  line-height: 50px;
}

.baner_nor {
  display: none;
  align-items: center;
}

.swpPrev {
  margin-right: 5px;
}

.swpNext {
  margin-left: 5px;
}

.swpPrev i,
.swpNext i {
  color: #fff;
  font-size: 30px;
  cursor: pointer;
  transition: all 0.4s;
}

.baner_vonter .warp {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ui-loop .path-loop {
  fill: rgba(0, 0, 0, 0);
  stroke: #fff;
  stroke-miterlimit: 44;
  stroke-width: 44px;
  position: relative;
  opacity: 0.4;
}

.ui-loop {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: absolute;
  overflow: hidden;
  border: 2px solid #fff;
  left: auto;
  transform: translateX(-50%) rotate(270deg);
  right: 0;
}

.ui-loop .path-loop-bg {
  fill: none;
  stroke: #fff;
  stroke-miterlimit: 10;
  stroke-width: 2px;
}

.ui-loop::before {
  width: 5px;
  height: 5px;
  background: #fff;
  border-radius: 50%;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
/* 底部 */

footer {
  background: #252525;;
}
footer .wp .wrap{
  padding: 4.5vw 0 6.5vw 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
footer .wp .wrap .btm-nav{
  display: flex;
  width: 60%;
  justify-content: space-between;

  margin: 0 5% 0 0;
}
footer .wp .wrap .btm-nav .item{}
footer .wp .wrap .btm-nav .item a{
  color: #fff;
  display: block;
  font-size: clamp(16px,calc(0.5vw + 8.4px ),18px);
  margin: 0 0 8px 0;
}
footer .wp .wrap .btm-nav .item a:first-child{
  margin: 0 0 2vw 0;
}
footer .wp .wrap .btm-nav .item a:hover {
  color: #0051a0;
}
footer .wp .wrap .btm-contact{
  width: 20%;
}
footer .wp .wrap .btm-contact .name{
  font-size: calc(0.5vw + 8.4px);
  color: #fff;
  margin: 0 0 1vw 0;
}
footer .wp .wrap .btm-contact .phone{
  font-size: calc(0.5vw + 10.4px);
  color: #fff;
}


footer .info {
  background: #272727;
  font-size: calc(0.5vw + 4.4px);
  color: rgba(255, 255, 255, 1);
}

footer .info a {
  padding: 20px 0;
  display: inline-block;
  text-align: left;
  font-size: calc(0.5vw + 4.4px);
  color: rgba(255, 255, 255, 1);
}

.tabbar {
  height: 1.45rem;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #111;
  z-index: 99;
}

.tabbar .wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.tabbar .wrapper .tabitem {
  flex-grow: 1;
  width: 25%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 1.45rem;
  opacity: 0.8;
}

.tabbar .wrapper .active {
  opacity: 1;
  background: #2c6350;
}

.tabbar .wrapper .tabitem img {
  display: block;
  margin: 10px 0 10px 0;
}

.tabbar .wrapper .tabitem span {
  color: #fff;
  font-size: 0.2rem;
}

/*页码*/

.pagination {
  display: flex;
  justify-content: center;
  margin: 20px auto 30px;
}

.pagination li {
  width: 30px;
  height: 30px;
  margin: 10px 10px;
  border: 1px solid #efefef;
  text-align: center;
  line-height: 30px;
}

.pagination .disabled {
  opacity: 0.5;
}

.pagination .active {
  background: rgba(10, 107, 220, 1);
  color: #fff;
}

.index-pro {
  padding: 0 0 5.6vw 0;
}
.index-pro .swiperbox {
  padding: 0 0 0 9.3%;
  width: 100%;
  overflow: hidden;
}
.index-pro .swiperbox .swiper {
  max-height: 580px;
  height: 30.208333333333333333333333333333vw;
  min-height: 130px;
}
.index-pro .swiperbox .swiper .swiper-wrapper .swiper-slide img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.index-pro .swiperbox .swiper .swiper-wrapper .swiper-slide .txt {
  position: absolute;
  left: 3vw;
  bottom: 2vw;
}
.index-pro .swiperbox .swiper .swiper-wrapper .swiper-slide .txt p {
  font-size: clamp(16px, calc(0.5vw + 20.4px), 30px);
  color: #fff;
  font-weight: bold;
}
.index-pro .swiperbox .swiper .swiper-wrapper .swiper-slide .txt span {
  font-size: 14px;
  color: #fff;
}

.prointro {
  background: url(../images/pro/prointro.jpeg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  height: 50vw;
  max-height: 1260px;
  min-height: 480px;
  animation: bgchange 10s ease-in-out infinite;
  animation-direction: alternate;
}
.prointro .titledemo {
  border: 0;
}
.prointro .titledemo .title {
  color: #fff;
  padding: 8vw 0 0 0;
}
.prointro .wp .titlename {
  color: #fff;
}
.prointro .wp .desc {
  font-size: 18px;
  color: #fff;
  margin: 3vw 0 2vw 0;
  line-height: 1.8;
}
.prointro .more {
  width: 114px;
  height: 40px;
  background: #0068ca;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 14px;
}
.pro-adv {
}
.pro-adv .wp {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 5;
  left: 8.3%;
}
.pro-adv .wp .titledemo {
  border: 0;
}
.pro-adv .wp .titledemo .title {
  color: #252525;
}
.pro-adv .wp .titlename {
  color: #0068ca;
}
.pro-adv .wp .desc {
  color: #252525;
  font-size: 15px;
}
.pro-adv .swiper .swiper-wrapper .swiper-slide .img_pic {
  width: 100%;
}
.pro-adv .swiper .swiper-wrapper .swiper-slide .img_mpic {
  width: 100%;
  display: none;
}
.pro-adv .wp .titledemo .title {
  padding: 8vw 0 28px 0;
}


.pro-adv .swiper .adv-cate {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 99;
  height: 30px;
}
.pro-adv .swiper .adv-cate .item {
  flex-grow: 1;
  text-align: center;
}
.pro-adv .swiper .adv-cate .item p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.5);
}
.pro-adv .swiper .adv-cate .active p {
  color: rgba(255, 255, 255, 1);
}
.pro-adv .swiper-pagination {
  bottom: 43% !important;
  left: 13.3% !important;
  width: max-content !important;
}
.pro-adv .swiper .swiper-pagination-bullet {
  width: 20px;
  height: 3px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.52);
}
.pro-adv .swiper .swiper-pagination-bullet-active {
  background: rgba(255, 255, 255, 1);
}
.index-cases {
  padding: 0 0 6vw 0;
}
.index-cases .wp .swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@keyframes bgchange {
  0% {
    background-size: 100% 100%;
  }
  100% {
    background-size: 105% 105%;
  }
}
.index-about {
  background: #f6f6f6;
  padding: 0 0 7vw 0;
}
.index-about .wp .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6.25vw 0 4.28vw 0;
}
.index-about .wp .wrap .txt_box {
  width: 46.125%;
  max-width: 720px;
  min-width: 460px;
}
.index-about .wp .wrap .txt_box .name {
  color: #999898;
  font-size: 16px;
}
.index-about .wp .wrap .txt_box .title {
  color: #222;
  font-size: clamp(26px, calc(2vw + 9.6px), 48px);
  font-weight: bold;
  margin: 11px 0 14px 0;
}
.index-about .wp .wrap .txt_box .cont {
  font-size: clamp(14px, calc(0.5vw + 6.4px), 16px);
  color: #222;
  max-width: 90%;
  margin: 0 0 15px 0;
  line-height: 1.8;
}
.index-about .wp .wrap .txt_box .more {
  font-size: 16px;
  color: #fff;
  background: #0068ca;
  width: 167px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 35px 0 0 0;
}
.index-about .wp .wrap .img_box {
  width: 45.125%;
}
.index-about .wp .wrap .img_box .box {
  width: 100%;
  height: 100%;
  border: 1px solid #0068ca;
}
.index-about .wp .wrap .img_box img {
  width: 100%;
  max-width: 100%;
}
.index-about .wp .list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.index-about .wp .list .item {
  background: #fff;
  height: 9.12vw;
  flex: 1;
  position: relative;
}
.index-about .wp .list .item .icon {
  margin: 15px;
  width: 3.645833vw;
  height: 3.64583vw;
  min-height: 35px;
  min-width: 35px;
  max-width: 70px;
  max-height: 70px;
}
.index-about .wp .list .item .txt {
}
.index-about .wp .list .item .txt p {
  font-size: clamp(34px, 4.4270833vw, 85px);
  color: #0051a0;
  font-weight: bold;
  line-height: 1;
  font-family: "Outfit";
}
.index-about .wp .list .item .txt p i{
  font-style: normal;
}
.index-about .wp .list .item .txt p span {
  font-size: calc(0.5vw + 6px);
  color: #0051a0;
}
.index-about .wp .list .item .txt {
  position: absolute;
  right: 10px;
  bottom: -40px;
  text-align: right;
}
.index-about .wp .list .item .txt span {
  font-size: calc(0.5vw + 6px);
  color: #717171;
}

.tec {
  background: url(../images/tec/bg.jpeg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  height: 37.083vw;
  max-height: 712px;
  min-height: 370px;
  animation: bgchange 10s ease-in-out infinite;
  animation-direction: alternate;
}
.tec .titledemo {
  border: 0;
}
.tec .titledemo .title {
  color: #fff;
  padding: 6vw 0 0 0;
}
.tec .wp .titlename {
  color: #fff;
}
.tec .wp .desc {
  font-size: 18px;
  color: #fff;
  margin: 3vw 0 2vw 0;
  line-height: 1.8;
}
.tec .more {
  width: 114px;
  height: 40px;
  background: #0068ca;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 14px;
}
.index-news {
  padding: 0 0 5vw 0;
}
.index-news .wp .wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.index-news .wp .wrap .hot-news {
  width: 61.75%;
  margin: 0 20px 0 0;
  height: 28.541666666666666666666666666667vw;
}
.index-news .wp .wrap .hot-news .swiper .swiper-wrapper .swiper-slide .bigpic {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s;
}
.index-news .wp .wrap .hot-news .swiper .swiper-wrapper .swiper-slide:hover .bigpic{
  transition: all 0.4s;
  transform: scale(1.05);

} 
.index-news .wp .wrap .hot-news .swiper .swiper-wrapper .swiper-slide .txt_box {
  position: absolute;
  bottom: 20px;
  left: 20px;
  text-align: left;
}
.index-news .wp .wrap .hot-news .swiper-pagination{
  width: max-content;
  right: 34px;
  left: auto;
  bottom: 34px;
}

.index-news .wp .wrap .hot-news .swiper-pagination-bullet{width: 20px;
  height: 5px;
  border-radius: 0;
  background: #fff;
}
.index-news
  .wp
  .wrap
  .hot-news
  .swiper
  .swiper-wrapper
  .swiper-slide
  .txt_box
  .name {
  font-size: clamp(16px, calc(0.5vw + 10.4px), 20px);
  color: #fff;
}
.index-news
  .wp
  .wrap
  .hot-news
  .swiper
  .swiper-wrapper
  .swiper-slide
  .txt_box
  span {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: #fff;
}
.index-news
  .wp
  .wrap
  .hot-news
  .swiper
  .swiper-wrapper
  .swiper-slide
  .txt_box
  span
  img {
  margin: 0 13px 0 0;
  filter: invert(0) brightness(5);
}
.index-news .wp .wrap .news-list {
  display: flex;
  justify-content: flex-start;
  align-items: self-start;
  gap: 20px;
  width: calc(100% - 61.75% - 20px);
  height: 28.541666666666666666666666666667vw;
  flex-wrap: wrap;
}
.index-news .wp .wrap .news-list .item {
  background: #f6f6f6;
  flex: 1 1 calc(48% - 30px);
  padding: 20px;
  width: 49%;
  height: calc(50% - 20px);
  position: relative;
  cursor: pointer;
  display: block;
}
.index-news .wp .wrap .news-list .item .name {
  color: #000;
  font-size: clamp(16px, calc(0.5vw + 10.4px), 20px);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.index-news .wp .wrap .news-list .item:hover .name{
  color: #0051a0;
} 
.index-news .wp .wrap .news-list .item .txt-box {
  position: absolute;
  bottom: 15px;
  left: 5px;
  display: flex;justify-content: flex-start;align-items: center;
}
.index-news .wp .wrap .news-list .item .txt-box span {
  display: flex;justify-content: flex-start;align-items: center;
  color: #222;
}
.index-news .wp .wrap .news-list .item .txt-box span img {
  margin: 0 6px 0 0;
}
/* 媒介查询 */
/* 大屏幕（老款笔记本1366） */

@media (min-width: 1921px) {
  .pro-adv .wp {
    left: 12.3%;
  }
  .index-pro .swiperbox {
    padding: 0 0 0 13.3%;
  }
  .banner_text {
    left: 13.3%;
  }
  .banner .banpic {
    max-width: 100%;
    display: block;
    margin: 0 auto;
  }
  .wp {
    max-width: 1920px;
  }
}

@media (max-with: 1650px) {
}

@media (max-with: 1440px) {
}

@media (max-width: 1366px) {
  .pro-adv .swiper-pagination {
    bottom: 35% !important;
  }
}

@media (max-width: 1280px) {
}

@media (max-width: 1170px) {
}

@media (max-width: 1024px) {
  .pro-adv .swiper-pagination {
    bottom: 25% !important;
  }
}

@media (max-width: 992px) {
  .index-news .wp .wrap .news-list .item {
    flex: 1 1 calc(100%);
    padding: 10px;
    width: 100%;
    height: 100px;
}
  .index-news .wp .wrap{
    flex-wrap: wrap;
  }
  .index-news .wp .wrap .hot-news{
    width: 100%;
    margin: 0 0 20px 0;
    height: max-content;
  }
  .index-news .wp .wrap .news-list {

    width: 100%;
    height: max-content;
    
}
  .pc-header {
    display: none;
  }
  .index-about .wp .wrap {
    flex-direction: column;
    justify-content: flex-start;
  }
  .index-about .wp .wrap .txt_box {
    width: 100%;
    max-width: 100%;
    margin: 0 0 5vw 0;
    min-width: auto;
  }
}

@media (max-width: 768px) {
  .index-about .wp .list .item .txt span{
    font-size: 13px;
  }
  .index-about .wp .list .item .txt p span{
    font-size: 13px;
  }
  footer .wp .wrap .btm-contact{
    width: 100%;
  }
  footer .wp .wrap .btm-contact .name{
    font-size: 16px;
  }
  footer .wp .wrap .btm-contact .phone{
    font-size: 18px;
  }
  footer .info a{
    font-size: 14px;
  }
  footer .info {
    font-size: 14px;
  }
  footer .wp .wrap .btm-nav{
    display: none;
  }
  .index-about .wp .list {
    display: flex;
    flex-wrap: wrap;
  }
  .index-about .wp .list .item {
    width: 46%;
    flex-grow: inherit;
    margin: 0 0 3vw 0;
    height: 14vw;
    flex: 1 1 calc(25% - 20px);
    box-sizing: border-box;
    flex: 1 1 calc(48% - 20px);
    box-sizing: border-box;
  }
  .pro-adv .swiper-pagination {
    display: none;
  }
}

@media (max-width: 640px) {
  .tec{
    background: url(../images/tec/bg.jpg);
  }
  .prointro{
    background: url(../images/pro/prointro.jpg);
  }
  .index-about .wp .list .item .txt {
    bottom: -20px;
  }
  .index-about {
    padding: 0 0 14vw 0;
  }
  .pro-adv {
    height: 540px;
  }
  .pro-adv .swiper {
    height: 540px;
  }
  .pro-adv .swiper .swiper-wrapper .swiper-slide .img_pic {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
  }
  .pro-adv .swiper .swiper-wrapper .swiper-slide .img_mpic{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .pro-adv .wp .desc {
    color: #000;
    font-size: 13px;
  }
  .pro-adv .wp .titledemo .title {
    padding: 15vw 0 16px 0;
  }
  .pro-adv .swiper .adv-cate .item p {
    font-size: 14px;
  }
  .pro-adv .wp {
    left: 2.3%;
  }
  .pro-adv .wp .titlename {
    font-size: 20px;
  }

  .prointro .wp .desc {
    font-size: 14px;
    color: #fff;
    margin: 3vw 0 2vw 0;
    line-height: 1.5;
  }

  .prointro .titledemo .title {
    color: #fff;
    padding: 18vw 0 0 0 !important;
  }
  .tec .wp .desc {
    font-size: 14px;
    color: #fff;
    margin: 3vw 0 5vw 0;
    line-height: 1.5;
  }

  .tec .titledemo .title {
    color: #fff;
    padding: 18vw 0 0 0 !important;
  }
  .index-pro .swiperbox .swiper .swiper-wrapper .swiper-slide .txt p {
    font-size: clamp(16px, calc(0.5vw + 16.4px), 30px);
  }
  .index-pro .swiperbox .swiper .swiper-wrapper .swiper-slide .txt span {
    font-size: 13px;
  }
  .index-pro .swiperbox {
    padding: 0 0 0 4.3%;
  }
  .wp {
    width: 96%;
    padding: 0 2%;
  }
  .wp .titledemo .title {
    padding: 3.645vw 0 12px 0;
  }
  .wp .titlename {
    margin: 18px 0;
  }
  .banner_text p {
    font-size: 26px;
  }
  .banner_text {
    top: 31vw;
  }
  .banner .banner_img {
    display: none;
  }
  .banner .mbanner_img{
    display: block;
  }
}

@media (max-width: 414px) {
  header .logo {
    padding: 0;
    max-width: 30%;
  }
  header .logo img {
    max-width: 100%;
    width: auto;
    height: auto;
  }
}

@media (max-width: 393px) {
}

@media (max-width: 375px) {
}
